home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / AMUG / PROGRAMMING / Raven 1.2 Examples.sit / Raven 1.2 Examples / Quill / Source / BasePaneEditor.cpp < prev    next >
Text File  |  1997-08-07  |  1KB  |  51 lines

  1. /*
  2.  *  File:       BasePaneEditor.cpp
  3.  *  Summary:       Abstract base class for view's that edit pane objects.
  4.  *  Written by: Jesse Jones
  5.  *
  6.  *  Copyright ゥ 1996 Jesse Jones. 
  7.  *    For conditions of distribution and use, see copyright notice in ZTypes.h  
  8.  *
  9.  *  Change History (most recent first):    
  10.  *
  11.  *         <->    10/15/96    JDJ        Created
  12.  */
  13.  
  14. #include "BasePaneEditor.h"
  15.  
  16.  
  17. // ===================================================================================
  18. //    CRootPaneEditor
  19. // ===================================================================================
  20.  
  21. //---------------------------------------------------------------
  22. //
  23. // CRootPaneEditor::~CRootPaneEditor
  24. //
  25. //---------------------------------------------------------------
  26. CRootPaneEditor::~CRootPaneEditor()
  27. {
  28. }
  29.  
  30.  
  31. //---------------------------------------------------------------
  32. //
  33. // CRootPaneEditor::CRootPaneEditor
  34. //
  35. //---------------------------------------------------------------
  36. CRootPaneEditor::CRootPaneEditor(TView* superView) : TView("????", superView, kZeroRect)
  37. {
  38. }
  39.  
  40.  
  41. //---------------------------------------------------------------
  42. //
  43. // CRootPaneEditor::Validate
  44. //
  45. //---------------------------------------------------------------
  46. bool CRootPaneEditor::Validate()
  47. {
  48.     return true;
  49. }
  50.  
  51.